40. What are different isolation levels of a transaction object in ADO.NET? ReadUncommitted: Does not lock the records being read. Th...
Home / Posts filed under ASP.Net Questions
Showing posts with label ASP.Net Questions. Show all posts
Showing posts with label ASP.Net Questions. Show all posts
Sunday, 22 April 2018
What classes are needed to send e-mail from an ASP.NET application?
41. What classes are needed to send e-mail from an ASP.NET application? The classes MailMessage and SmtpMail have to be used to send ...
Wednesday, 11 April 2018
What is an interface and what is an abstract class?
26. What is an interface and what is an abstract class? In an interface, all methods must be abstract (must not be defined). In an ab...
Can the HTML control retain State across postbacks?
21 . Can the HTML control retain State across postbacks? No, by default HTML controls don’t retain state across postbacks. 22. C...
Why is transaction processing very important for web applications?
31. Why is transaction processing very important for web applications? Transaction processing is very important for Web application...
Monday, 9 April 2018
What is tracing and what are the advantages of using tracing to log exceptions?
17. What is an exception log? An exception log is a list of handled exceptions that occur while your application is running. Reviewi...
Subscribe to:
Posts (Atom)
Labels
POPULAR POST
-
POST Method in ASP.NET The POST method transfers information via HTTP headers. The information is encoded as described in case of GET method...
-
Show Data through User ID using Stored Procedure in ASP.NET Default.aspx <% @ Page Title ="Home Page" Language ="C#...
-
Get Method in ASP.NET The GET method sends the encoded user information appended to the page request. The page and the encoded information a...